In This Topic
The items being updated.
Syntax
'Declaration
<JsonConverterAttribute(C1.Web.Mvc.Serialization.PascalCaseJsonConverter)>
Public Property ItemsUpdated As System.Collections.Generic.IList(Of T)
'Usage
Dim instance As BatchOperatingData(Of T)
Dim value As System.Collections.Generic.IList(Of T)
instance.ItemsUpdated = value
value = instance.ItemsUpdated
[JsonConverter(C1.Web.Mvc.Serialization.PascalCaseJsonConverter)]
public System.Collections.Generic.IList<T> ItemsUpdated {get; set;}
public read-write property ItemsUpdated: System.Collections.Generic.IList;
JsonConverterAttribute(C1.Web.Mvc.Serialization.PascalCaseJsonConverter)
public function get,set ItemsUpdated : System.Collections.Generic.IList
[JsonConverter(C1.Web.Mvc.Serialization.PascalCaseJsonConverter)]
public: __property System.Collections.Generic.IList<T*>* get_ItemsUpdated();
public: __property void set_ItemsUpdated(
System.Collections.Generic.IList<T*>* value
);
[JsonConverter(C1.Web.Mvc.Serialization.PascalCaseJsonConverter)]
public:
property System.Collections.Generic.IList<T^>^ ItemsUpdated {
System.Collections.Generic.IList<T^>^ get();
void set ( System.Collections.Generic.IList<T^>^ value);
}
See Also